home *** CD-ROM | disk | FTP | other *** search
/ Zoom 2 / Zoom - Release 2 (1996)(Active Software)[!].iso / games / misc / startrek / s / startup-sequence < prev   
Text File  |  1992-02-27  |  979b  |  56 lines

  1. ; AGAtron Star Trek Game
  2. ;    Startup-Sequence
  3.  
  4. ; Please leave it as it is
  5.  
  6.  
  7. Cls
  8. FastMemFirst
  9.  
  10. Echo "                        AGAtron Presents"
  11. Echo "                       The Star Trek Game"
  12. Type s/ReadMe
  13.  
  14. Ask " Wanna read the Docs ? (Y/N):"
  15. If WARN
  16.  Muchmore StarTrek.DOC
  17. EndIf
  18.  
  19. Ask " Wanna see the Intro-Anim ? (Y/N):"
  20. If WARN
  21.  ShowAnim >Nil: TrekGame.preanim +4
  22. EndIf
  23.  
  24. CheckMem 1500000 
  25. If NOT WARN
  26.  Ask " Enough Memory - Copy DataDisk to RAM: ? (Y/N):"
  27.  If WARN
  28.   Echo "*N Copying Datadisk to RAM: ... *N"
  29.   Copy STDATA: ram: all quiet
  30.   Ask " Please Remove DataDisk, then press <Return>!"
  31.   Assign STDATA: RAM:
  32.  EndIf
  33.  Echo "*N Starting the Game ..."
  34.  FailAt 3000000  ; ahem...
  35.  StarTrek
  36.  FailAt 20
  37. Else
  38.  FailAt 3000000
  39.  CheckMem 600000
  40.  If WARN
  41.   Echo "*N 512K Memory only - Starting Special Version with less Sounds."
  42.   StarTrek512
  43.  Else
  44.   Echo "*N 1MB Memory - Starting the Game ..."
  45.   StarTrek
  46.  EndIf
  47.  FailAt 20
  48. EndIf
  49.  
  50. Type s/Bye
  51.  
  52. Show Enterprise.pic
  53.  
  54. ; End of Script
  55.  
  56.